home *** CD-ROM | disk | FTP | other *** search
Makefile | 1993-10-09 | 312 b | 21 lines |
- #
- # Listing 3
- #
- # MAKEFILE--
- #
- # Borland MAKE file for CLIP.C and driver program.
- #
- # Mark W. Schumann, September 1993
- # Use freely.
- #
-
- main.exe: main.obj clip.obj
- tlink /m/v/L\c5\lib main clip
-
- main.obj: main.prg
- clipper main /m/n
-
- .c.obj:
- bcc -c -ml -I\c5\include{ $<}
-
-